home *** CD-ROM | disk | FTP | other *** search
/ Interactive Preview: Enemy of the State / Interactive Preview: Enemy of the State.iso / pc / progthis.dxr / 00001.ls next >
Encoding:
Text File  |  1998-11-18  |  337 b   |  25 lines

  1. on enterFrame
  2. end
  3.  
  4. on exitFrame
  5.   go(the frame)
  6. end
  7.  
  8. on keyDown
  9.   if (the key = the commandDown) and "." then
  10.     doDefaultButton()
  11.   end if
  12. end
  13.  
  14. on doDefaultButton
  15.   global gDefaultButton
  16.   tell the stage
  17.     closeMe()
  18.   end tell
  19.   set btnName to the text of member "Btn1"
  20.   tell the stage
  21.     abort()
  22.     return btnName
  23.   end tell
  24. end
  25.